home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / BARNET / FREENET / DEVOS / FDSOURCE.ARC / h / wimpassert < prev    next >
Text File  |  1996-02-21  |  296b  |  10 lines

  1. /* assert.h - assert using wimp window and throwback client library */
  2.  
  3. #ifdef DEBUG
  4. # define wimp_assert(e) ((e)? ((void)0): gjwimp_assert(#e, __FILE__, __LINE__))
  5. #else
  6. # define wimp_assert(ignore) ((void)0)
  7. #endif
  8.  
  9. extern void gjwimp_assert(const char *msg, const char *file, const int line);
  10.